home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
source
/
gfxfx
/
powers.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1994-03-24
|
105b
|
13 lines
program powers;
var
x : real;
begin
x := exp(3.853*ln(2.6));
writeln(x:0:3);
end.